/**
 * =====================================================
 * SYSTÈME POPUP CONNEXION REQUISE (sgbl)
 * =====================================================
 * 
 * Styles pour le popup de connexion requise.
 * L'overlay utilise .body-blur de gbl_styles.css.
 */

/* =========================
   OVERLAY (positionné au-dessus du body-blur)
========================= */
.popup-connexion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.popup-connexion-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* =========================
   CONTENU DU POPUP
========================= */
.popup-connexion-content {
    background-color: var(--cl-blanc-i3);
    border: 1px solid var(--cl-transparent-blanc-i1);
    border-radius: var(--border-radius-extra);
    padding: 30px;
    max-width: 450px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: var(--dynamic-padding);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* =========================
   ACTIONS
========================= */
.popup-connexion-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-connexion-actions button {
    flex: 1;
    min-width: 140px;
}
